home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / adlibn / dbtest.cpp < prev    next >
C/C++ Source or Header  |  1998-12-27  |  5KB  |  188 lines

  1. // DBTest.cpp : Defines the class behaviors for the application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "DBTest.h"
  6.  
  7. #include "MainFrm.h"
  8. #include "ChildFrm.h"
  9. #include "DBTestDoc.h"
  10. #include "DBTestView.h"
  11.  
  12. #include "FormCust.h"
  13. #include "FormOrd.h"
  14. #include "FormCateg.h"
  15.  
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CDBTestApp
  24.  
  25. BEGIN_MESSAGE_MAP(CDBTestApp, CWinApp)
  26.     //{{AFX_MSG_MAP(CDBTestApp)
  27.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  28.     ON_COMMAND(IDM_FORM_CAT, OnFormCat)
  29.     ON_COMMAND(IDM_FORM_CUST, OnFormCust)
  30.     ON_COMMAND(IDM_FORM_ORD, OnFormOrd)
  31.     //}}AFX_MSG_MAP
  32.     // Standard file based document commands
  33.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  34.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  35.     // Standard print setup command
  36.     ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  37. END_MESSAGE_MAP()
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CDBTestApp construction
  41.  
  42. CDBTestApp::CDBTestApp()
  43. {
  44.     // TODO: add construction code here,
  45.     // Place all significant initialization in InitInstance
  46. }
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // The one and only CDBTestApp object
  50.  
  51. CDBTestApp theApp;
  52.  
  53. CDaoDatabase db;
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CDBTestApp initialization
  57.  
  58. BOOL CDBTestApp::InitInstance()
  59. {
  60.     AfxEnableControlContainer();
  61.  
  62.     // Standard initialization
  63.     // If you are not using these features and wish to reduce the size
  64.     //  of your final executable, you should remove from the following
  65.     //  the specific initialization routines you do not need.
  66.  
  67. #ifdef _AFXDLL
  68.     Enable3dControls();            // Call this when using MFC in a shared DLL
  69. #else
  70.     Enable3dControlsStatic();    // Call this when linking to MFC statically
  71. #endif
  72.  
  73.     // Change the registry key under which our settings are stored.
  74.     // TODO: You should modify this string to be something appropriate
  75.     // such as the name of your company or organization.
  76.     SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  77.  
  78.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  79.  
  80.     // Register the application's document templates.  Document templates
  81.     //  serve as the connection between documents, frame windows and views.
  82.  
  83.     CMultiDocTemplate* pDocTemplate;
  84.     pDocTemplate = new CMultiDocTemplate(
  85.         IDR_DBTESTTYPE,
  86.         RUNTIME_CLASS(CDBTestDoc),
  87.         RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  88.         RUNTIME_CLASS(CDBTestView));
  89.     AddDocTemplate(pDocTemplate);
  90.  
  91.     // create main MDI Frame window
  92.     CMainFrame* pMainFrame = new CMainFrame;
  93.     if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  94.         return FALSE;
  95.     m_pMainWnd = pMainFrame;
  96.  
  97.     // Parse command line for standard shell commands, DDE, file open
  98. //    CCommandLineInfo cmdInfo;
  99. //    ParseCommandLine(cmdInfo);
  100.  
  101.     // Dispatch commands specified on the command line
  102. //    if (!ProcessShellCommand(cmdInfo))
  103. //        return FALSE;
  104.  
  105.     HINSTANCE hDLL = LoadLibrary("ADBLibDLL"); 
  106.     db.Open( "dbase.mdb" ); 
  107.     SetMainDatabase(&db); 
  108.  
  109.  
  110.     // The main window has been initialized, so show and update it.
  111.     pMainFrame->ShowWindow(m_nCmdShow);
  112.     pMainFrame->UpdateWindow();
  113.  
  114.     return TRUE;
  115. }
  116.  
  117.  
  118. /////////////////////////////////////////////////////////////////////////////
  119. // CAboutDlg dialog used for App About
  120.  
  121. class CAboutDlg : public CDialog
  122. {
  123. public:
  124.     CAboutDlg();
  125.  
  126. // Dialog Data
  127.     //{{AFX_DATA(CAboutDlg)
  128.     enum { IDD = IDD_ABOUTBOX };
  129.     //}}AFX_DATA
  130.  
  131.     // ClassWizard generated virtual function overrides
  132.     //{{AFX_VIRTUAL(CAboutDlg)
  133.     protected:
  134.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  135.     //}}AFX_VIRTUAL
  136.  
  137. // Implementation
  138. protected:
  139.     //{{AFX_MSG(CAboutDlg)
  140.         // No message handlers
  141.     //}}AFX_MSG
  142.     DECLARE_MESSAGE_MAP()
  143. };
  144.  
  145. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  146. {
  147.     //{{AFX_DATA_INIT(CAboutDlg)
  148.     //}}AFX_DATA_INIT
  149. }
  150.  
  151. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  152. {
  153.     CDialog::DoDataExchange(pDX);
  154.     //{{AFX_DATA_MAP(CAboutDlg)
  155.     //}}AFX_DATA_MAP
  156. }
  157.  
  158. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  159.     //{{AFX_MSG_MAP(CAboutDlg)
  160.         // No message handlers
  161.     //}}AFX_MSG_MAP
  162. END_MESSAGE_MAP()
  163.  
  164. // App command to run the dialog
  165. void CDBTestApp::OnAppAbout()
  166. {
  167.     CAboutDlg aboutDlg;
  168.     aboutDlg.DoModal();
  169. }
  170.  
  171. /////////////////////////////////////////////////////////////////////////////
  172. // CDBTestApp message handlers
  173.  
  174. void CDBTestApp::OnFormCat() 
  175. {
  176.     OpenForm( RUNTIME_CLASS(CFormCateg), "Category" );    
  177. }
  178.  
  179. void CDBTestApp::OnFormCust() 
  180. {
  181.     OpenForm( RUNTIME_CLASS(CFormCust), "Customers" );    
  182. }
  183.  
  184. void CDBTestApp::OnFormOrd() 
  185. {
  186.     OpenForm( RUNTIME_CLASS(CFormOrd), "Orders" );    
  187. }
  188.